.event-card {
    display: flex;
    margin-top: 5px;
    width: 100%;
    font-family: sans-serif;
}
.event-date {
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 7px 0px 0px 7px;
}

.event-day {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.event-month {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.event-details {
    background-color: #edebeb;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1; /* ocupa o restante da linha */
    border-radius: 0px 7px 7px 0px;
    
}


.event-title {
    font-weight: bold;
    font-size: 16px;
}

.event-location {
    font-size: 14px;
    color: #333;
}

.evento-link{
    text-decoration: none; /* remove o sublinhado */
    color: inherit;        /* mantém a cor original do texto interno */
    display: block;
}

/* Tabs */
.event-tabs {
    display: flex;
    margin-bottom: 10px;
    overflow: hidden;
    font-family: sans-serif;
    gap: 2px;
}

.tab-btn {
    flex: 1;
    border: none;
    background: #fff;
    padding: 8px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease-in-out, color 0.2s;
    color: #000;
}

.tab-btn.active {
    background: #f0f0f0;
    color: #ff0000;
    border: none;
}

.tab-btn:hover {
    background: #f9f9f9;
}
.tab-btn:focus {
    outline: none;
    box-shadow: none;
}
